tg-me.com/SolarPosts/207
Create:
Last Update:
Last Update:
As for the source code of the script:
from cryptography.fernet import Fernet
import base64
password = input("Enter password: ")
if len(password) <= 32:
password = bytes((password.upper() + ("0" * (32 - len(password)))).encode())
else:
password = bytes(password[:32].encode())
key = base64.urlsafe_b64encode(password)
cipher_suite = Fernet(key)
try: print("Decrypted Message:", cipher_suite.decrypt(b"gAAAAABlAvLrzrIT5K716CaeNEaIbSC0dm4XqLlDmJ681XYVsMYY6priYBsgGfubWSF5WVAo2a35WgSwL2oa0oB0lI_5QWtgouGtOJAwlgOx-1CRcp-MmB0=").decode())
except: print("Invalid Password")
BY Solar // Posts
Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283
Share with your friend now:
tg-me.com/SolarPosts/207